home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / UTIL / MEMORY / OLD / MEM208SRC / !Memphis / h / compress next >
Text File  |  1993-09-08  |  264b  |  12 lines

  1. /*
  2.  * compress.h
  3.  * Part of the !Memphis distribution
  4.  * (c) bdb/nas, 1991-3
  5.  */
  6.  
  7. /* LZW/Squash compression header */
  8.  
  9. extern int compress(char *from, int fromlen, char *to, int tolen);
  10. extern void uncompress(char *from, int fromlen, char *to, int tolen);
  11.        
  12.